import { FC, PropsWithChildren } from "react"; interface Props {} const About: FC> = (props) => { return
hello About
; }; export default About;